--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Commit ee6fe7752180ee28562a9b965108612a268fae64
Parents : a61ec0f
Author : Ivan <ivan@quad4.io>
Signature : Signature validation error
Date : 2026-05-18T05:33:33-05:00
fix(ui): always show timestamps on outbound message bubbles
Changes
1 files changed, 1 insertions(+), 1 deletions(-)
Diff
diff --git a/meshchatx/src/frontend/js/messageTimestampGrouping.js b/meshchatx/src/frontend/js/messageTimestampGrouping.js
index 07726e41..1a9d7f63 100644
--- a/meshchatx/src/frontend/js/messageTimestampGrouping.js
+++ b/meshchatx/src/frontend/js/messageTimestampGrouping.js
@@ -97,7 +97,7 @@ export function buildTimestampGroupedOldestFirst(groupsOldestFirst, options = {}
const g = onlyMsg[i];
const next = onlyMsg[i + 1];
let show = true;
- if (next) {
+ if (next && !displayGroupIsOutbound(g)) {
const cb = displayGroupSortBoundsMs(g);
const nb = displayGroupSortBoundsMs(next);
const sameSide = displayGroupIsOutbound(g) === displayGroupIsOutbound(next);
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────